-
Notifications
You must be signed in to change notification settings - Fork 10
Move send message action into a subdirectory #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| [](https://github.com/zulip/github-actions-zulip/actions?query=workflow%3Atest-local) | ||
|
|
||
| This action sends a message to [Zulip](https://zulip.com/). | ||
| This is a collection of GitHub Actions to interact with [Zulip](https://zulip.com/). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The main README now states that this repository contains a collection of GitHub Actions.
In the "Actions" section, for each action, we have a link to the README.
Does that work for you?
| - name: Send a stream message | ||
| uses: ./ | ||
| with: | ||
| username: 'ggrossetie@yuzutech.fr' | ||
| api-key: ${{ secrets.ZULIP_API_KEY }} | ||
| organization-url: 'https://kroki.zulipchat.com' | ||
| to: 'test' | ||
| type: 'stream' | ||
| topic: 'releases' | ||
| content: | | ||
| zulip-send-message-action ${{ env.RELEASE_VERSION }} is out! | ||
| https://github.com/yuzutech/zulip-send-message-action/releases/tag/${{ env.RELEASE_VERSION }} | ||
| if: ${{ steps.enable_release_annoucement.outputs.value == 'true' }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was an experiment to publish a release announcement when a new release is published.
I guess we could publish an announcement in "announce" stream but in the meantime I've decided to remove it since the API key and organization URL are outdated.
Resolves #12